home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-17 | 21.4 KB | 46 lines | [TEXT/SPM ] |
- /*
- IC API Descriptions.h
-
- Describes each of the functions for the IC routines.
-
- */
-
- #if 0
-
- /* ***** Starting Up and Shutting Down ***** */
-
- ICError ICStart(ICInstance* inst,OSType creator);
- /*
- Call this at application initialisation. Set creator to your application
- creator to allow for future expansion of the IC system. Returns
- inst as a connection to the IC system.
- */
-
- ICError ICStop(ICInstance inst);
- /*
- It is illegal to call this routine inside a ICBegin/End pair.
- Call this at application initialisation, after which inst
- is no longer valid connection to IC.
- */
-
- /* ***** Specifying a Configuration ***** */
-
- ICError ICFindConfigFile(ICInstance inst,short count,ICDirSpecArrayPtr folders);
- /*
- It is illegal to call this routine inside a ICBegin/End pair.
- Call to configure this connection to IC.
- Set count as the number of valid elements in folders.
- Set folders to a pointer to the folders to search.
- Setting count to 0 and folders to nil is OK.
- Searches the specified folders and then the Preferences MapEntry(ICInstance inst,Handle entries,ICMapEntry* entry);
- /*
- Requires IC 1.1.
- You must specify a configuration before calling this routine.
- You do not have to be inside an ICBegin/End pair to call this routine.
- Adds an entry to the mappings database.
- entries must be a handle to a valid IC mappings database preference.
- The entry is added to the end of the entries database.
- No user data is added.
- */
- #endif
-